home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / misc / IOBlixDevKitR2.lha / IOBlixDevKit / C / include / ioblix / ioblixser.h < prev    next >
C/C++ Source or Header  |  1999-02-01  |  518b  |  23 lines

  1. /*
  2. **      $VER: ioblix/ioblixser.h 37.1 (3.1.99)
  3. **
  4. **      include file for ioblixser.device
  5. **
  6. **      (C) Copyright 1998,1999 Thore Böckelmann
  7. **      All Rights Reserved.
  8. */
  9.  
  10. #ifndef IOBLIX_SER_H
  11. #define IOBLIX_SER_H
  12.  
  13. #include <exec/io.h>
  14.  
  15. /* constants for SetCTRLLines */
  16. #define SIOCMD_SETCTRLLINES     (CMD_NONSTD + 7)
  17. #define SIOB_RTS                0
  18. #define SIOF_RTS                (1 << SIOB_RTS)
  19. #define SIOB_DTR                1
  20. #define SIOF_DTR                (1 << SIOB_DTR)
  21.  
  22. #endif /* IOBLIX_SER_H */
  23.